home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / gnumake / pdmake.zoo / astat.h next >
C/C++ Source or Header  |  1991-09-25  |  555b  |  22 lines

  1.     /************************************************\
  2.     *                        *
  3.     *    astat.h -    Retrofit <sys/stat.h>        *
  4.     *        for the Atari ST machines    *
  5.     *                        *
  6.     *    J.R. Bammi                    *
  7.     *                        *
  8.     \************************************************/
  9. #ifndef _ASTAT_H
  10. #define _ASTAT_H
  11. #define time_t    long
  12.  
  13. struct    stat
  14. {
  15.     char    st_sp1[21];    /* Junk        */
  16.     char    st_mode;    /* File attributes */
  17.     time_t  st_mod;    /* Mod time, we use the date & time as 1 long */
  18.     long    st_size;    /* File size       */
  19.     char    st_sp2[14];    /* File name       */
  20. };
  21. #endif
  22.